projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fa91cf
)
(Fcall_process): Avoid initializer on auto struct.
author
Karl Heuer
<kwzh@gnu.org>
Mon, 1 Jun 1998 20:49:47 +0000
(20:49 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Mon, 1 Jun 1998 20:49:47 +0000
(20:49 +0000)
src/callproc.c
patch
|
blob
|
history
diff --git
a/src/callproc.c
b/src/callproc.c
index f93d0160594d75ee1bee8d66e0bb0e60d3a7b325..4cd7dcfeda10b66ec79a24b91b52a5fe72c12e20 100644
(file)
--- a/
src/callproc.c
+++ b/
src/callproc.c
@@
-634,7
+634,9
@@
If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
int total_read = 0;
int carryover = 0;
int display_on_the_fly = !NILP (display) && INTERACTIVE;
- struct coding_system saved_coding = process_coding;
+ struct coding_system saved_coding;
+
+ saved_coding = process_coding;
while (1)
{